home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / grafik / 3d & render tools / irit / man / man6 / crefine.6 < prev    next >
Text File  |  1996-07-16  |  665b  |  22 lines

  1. .TH CREFINE
  2.  6 "IRIT Version 6.0" 
  3. .SH NAME
  4. CREFINE
  5.  
  6.  
  7.  
  8.  CurveType CREFINE( CurveType Curve, NumericType Replace, ListType KnotList )
  9.  
  10. Provides the ability to Replace a knot vector of Curve, or refine 
  11. it. KnotList is a list of knots to refine Curve at. All knots
  12. should be contained in the parametric domain of the Curve. If the knot
  13. vector is replaced, the length of KnotList should be identical to the
  14. length of the original knot vector of the Curve. If Curve is a
  15. Bezier curve, it is automatically promoted to be a Bspline curve.
  16.  
  17. Example:
  18.  
  19.     Crv2 = CREFINE( Crv, FALSE, list( 0.25, 0.5, 0.75 ) );
  20.  
  21. refines Crv and adds three new knots at 0.25, 0.5, and 0.75.
  22.